home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / Think C dcmd 1.0 ƒ / Think Put Lib source / PutSpacesTo.c < prev    next >
C/C++ Source or Header  |  1994-06-12  |  123b  |  10 lines

  1.     extern    short            mark;
  2.  
  3. void PutChar(char c);
  4.  
  5. void PutSpacesTo(int endpos)
  6. {
  7.     while ( mark < endpos )
  8.         PutChar( 0x20 );
  9. }
  10.